Feb 24, 2026
MCP & AI Improvements
New
mcpc is a new open-source CLI client for the MCP. It gives AI agents and developers a single, production-grade tool to authenticate, call tools, read resources, and manage sessions across any MCP server, all from the command line.
Instead of integrating MCP directly into your agent code, mcpc generates commands that your agent executes. This keeps tool execution sandboxed, reduces token overhead when working with many tools, and improves performance.
- OAuth 2.1 + PKCE authentication out of the box, no custom auth code needed
- Persistent sessions that survive between runs, so you don't re-authenticate every time
--jsonoutput mode for easy integration into scripts and automation pipelines- MCP proxy mode that exposes any stdio-based MCP server over HTTP
- Full MCP support for all primitives: tools, resources, prompts, and sampling
- Both transports supported: stdio and streamable HTTP
- Connect to any MCP server using stdio or streamable HTTP transport
- Authenticate automatically via OAuth 2.1 + PKCE when the server requires it
- Discover available tools, resources, and prompts on the server
- Execute commands and pipe results into your agent or CI/CD pipeline using
--json
As an example, you can list all available tools on the Apify MCP server and call one in two commands:
For more information, see the mcpc repository on GitHub .
Apify Agent Skills are reusable instruction sets that teach AI coding assistants like Claude Code and Cursor how to work with the Apify platform. Think of them as expert knowledge packaged for your AI pair programmer: instead of explaining Apify concepts from scratch every time, you install a skill and your assistant knows how to build Actors, pick the right scraping tool, and follow best practices.
Skills are published in the agent-skills repository and listed on the skills.sh marketplace.
- apify-actor-development - Teaches your AI assistant how to build, debug, and deploy Apify Actors following best practices, including project structure, error handling, and platform conventions
- apify-ultimate-scraper - Teaches your AI agent how to scrape any website at scale by selecting the right Actor for the job, configuring inputs, and handling common scraping challenges
Run a single command to add Apify skills to your project:
$npx skills add apify/agent-skills
Once installed, your AI assistant automatically picks up the skill instructions and applies them when relevant. No additional configuration is needed.
For more information, see the agent-skills repository .
On April 1st, we are deprecating the legacy Server-Sent Events (SSE) transport for the Apify MCP server in favor of Streamable HTTP, the standard transport defined in the MCP specification .
Streamable HTTP is simpler, more reliable, and supported by all major MCP clients. The legacy SSE endpoint will stop working after the deprecation date.
Update your MCP client configuration to replace the old SSE endpoint with the new base URL:
- Before:
mcp.apify.com/sse - After:
mcp.apify.com
No other changes are needed. All tools, resources, and authentication work the same way on the new endpoint.





